home *** CD-ROM | disk | FTP | other *** search
/ Collection of Tools & Utilities / Collection of Tools and Utilities.iso / pascal / tphers01.zip / HMP2INC.DOC < prev    next >
Text File  |  1991-09-08  |  759b  |  32 lines

  1. DOCUMENTATION FOR HMP2INC.PL
  2.  
  3. hmp2inc.pl reads a hmp file and constructs a Turbo Pascal typed constant 
  4. of the type HersheyFont. 
  5.  
  6. The syntax to run hmp2inc.pl is
  7.  
  8.   perl hmp2inc.pl [font1.hmp [font2.hmp font3.hmp ...]] > fonts.inc
  9.   
  10. which will read the information in the files font1.hmp ... and construct 
  11. a constant records for each hmp file. The name of the constant record
  12. is Hershey<hmp filename>, where <hmp filename> is the name of the <hmp 
  13. filename>.hmp file.
  14.  
  15. Example: 
  16.  
  17. To use the gothgbt font, run the command
  18.   
  19.   perl hmp2inc.pl gothgbt.hmp > gothgbt.inc
  20.   
  21. A pascal program that makes use of this font looks like
  22.  
  23.   uses tphersh;
  24.   
  25.   {$i gothgbt.inc}
  26.   
  27.   begin
  28.     HersheySetFont(@HersheyGothgbt);
  29.   end.
  30.   
  31.  
  32.